aboutsummaryrefslogtreecommitdiff
path: root/docs/dev/pages/issues
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dev/pages/issues')
-rw-r--r--docs/dev/pages/issues/add-picker2.md16
-rw-r--r--docs/dev/pages/issues/remove-r-print-macro.md12
2 files changed, 14 insertions, 14 deletions
diff --git a/docs/dev/pages/issues/add-picker2.md b/docs/dev/pages/issues/add-picker2.md
index f5c3ca7..a2b5a10 100644
--- a/docs/dev/pages/issues/add-picker2.md
+++ b/docs/dev/pages/issues/add-picker2.md
@@ -40,7 +40,7 @@ fn handle_hello(args: EntryHello) {
```rust
#[chain]
fn handle_hello(args: EntryHello) -> Next {
- // requires impl Groupped<_>
+ // requires impl Grouped<_>
// |
let parsed = args // vvvvvvvvvvvvvvvvvvv
.pick_route::<String, _>(positional!(), ErrorNoNameProvided)
@@ -90,11 +90,11 @@ pub struct PickerResult<Tuple> {
## 🕘 Progress
- [x] In Progress
- - [x] Added `Picker` struct and related call chain
- - [x] Added `parselib` providing parsing logic
- - [x] Added `Pickable` for extensibility
- - [ ] Comprehensive testing!
- - [ ] Improve documentation
- - [ ] Add examples
- - [ ] Update README
+ - [x] Added `Picker` struct and related call chain
+ - [x] Added `parselib` providing parsing logic
+ - [x] Added `Pickable` for extensibility
+ - [x] Comprehensive testing!
+ - [ ] Improve documentation
+ - [x] Add examples
+ - [ ] Update README
- [ ] Complete
diff --git a/docs/dev/pages/issues/remove-r-print-macro.md b/docs/dev/pages/issues/remove-r-print-macro.md
index d6f6bff..43d2740 100644
--- a/docs/dev/pages/issues/remove-r-print-macro.md
+++ b/docs/dev/pages/issues/remove-r-print-macro.md
@@ -89,9 +89,9 @@ As for rendering in logic functions like `#[chain]`, that should be handled by a
## 🕘 Progress
- [x] In Progress
- - [x] Remove `r_println!` and `r_print!` macros
- - [x] Modify `#[renderer]` and `#[help]` macros, remove implicit injection
- - [x] Provide **no-return-value mode** and **RenderResult return value mode** for `#[renderer]` and `#[help]` macros
- - [ ] Add new simplified syntax
- - [x] Update documentation and test cases, ensure **all pass**
-- [ ] Complete
+ - [x] Remove `r_println!` and `r_print!` macros
+ - [x] Modify `#[renderer]` and `#[help]` macros, remove implicit injection
+ - [x] Provide **no-return-value mode** and **RenderResult return value mode** for `#[renderer]` and `#[help]` macros
+ - [x] Add new simplified syntax
+ - [x] Update documentation and test cases, ensure **all pass**
+- [x] Complete