Skip to content

Commit

Permalink
fix error in godel script documents
Browse files Browse the repository at this point in the history
  • Loading branch information
ValKmjolnir committed May 8, 2024
1 parent a5186fe commit 95131b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/4_godelscript_language.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ Query is used for simple queries and is guaranteed to be output even without dec

```rust
query name from
variable in initial value,
variable in initial value,
variable in initial value,
variable in initial value
where condition
Expand Down Expand Up @@ -1044,8 +1044,8 @@ fn db() -> JavaDB {
}

query class_method from
Callable m in Callable(db()),
Class c in Class(db())
m in Callable(db()),
c in Class(db())
where
c.id = m.getBelongedClass().id
select
Expand Down
4 changes: 2 additions & 2 deletions doc/4_godelscript_language.md
Original file line number Diff line number Diff line change
Expand Up @@ -1044,8 +1044,8 @@ fn db() -> JavaDB {
}

query class_method from
Callable m in Callable(db()),
Class c in Class(db())
m in Callable(db()),
c in Class(db())
where
c.id = m.getBelongedClass().id
select
Expand Down

0 comments on commit 95131b4

Please sign in to comment.