Minor update

This commit is contained in:
Pranav Srinivas KumaR
2019-12-03 20:43:56 -06:00
parent f047b4bfce
commit 83fd2c6fe0
2 changed files with 2 additions and 3 deletions

BIN
test/bar

Binary file not shown.

View File

@@ -1,4 +1,3 @@
#include <iostream>
#include <progress/bar.hpp> #include <progress/bar.hpp>
int main() { int main() {
@@ -10,11 +9,11 @@ int main() {
bar.fill_progress_with(""); bar.fill_progress_with("");
bar.lead_progress_with(""); bar.lead_progress_with("");
bar.fill_remainder_with("-"); bar.fill_remainder_with("-");
bar.end_with(" ]"); bar.end_with("]");
// As configured, the bar will look like this: // As configured, the bar will look like this:
// //
// [■■■■■■■■■■■■■■■■■■■■ --------] 70% // [■■■■■■■■■■■■■■■■■■■■--------] 70%
// //
// //