You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ Once it's filed:
87
87
88
88
### Suggesting Enhancements
89
89
90
-
If you want to suggest an enhacement or new feature for the project, please [open a new issue](/issues) describing what you desire to improve, and, potentially, how you plan to contribute to the project.
90
+
If you want to suggest an enhancement or new feature for the project, please [open a new issue](/issues) describing what you desire to improve, and, potentially, how you plan to contribute to the project.
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ You can read it [by clicking this link](https://zerodaycode.github.io/canyon-boo
29
29
a `PostgreSQL` database and an `SqlServer` one in the same project.
30
30
- Is macro based. With a few annotations and a configuration file, you are ready to write your data access.
31
31
- Allows **migrations**. `Canyon-SQL` comes with a *god-mode* that will manage every table on your database for you. You can modify in `Canyon` code your tables internally, altering columns, setting up constraints...
32
-
Also, in the future, we have plans to allow you to manipulate the whole server, like creating databases, altering configurations... everything, but in a programatically approach with `Canyon`!
32
+
Also, in the future, we have plans to allow you to manipulate the whole server, like creating databases, altering configurations... everything, but in a programmatically approach with `Canyon`!
33
33
34
34
## Supported databases
35
35
@@ -81,7 +81,7 @@ Note the leading reference on the `find_by_pk(...)` parameter. This associated f
81
81
### Building more complex queries
82
82
83
83
For exemplify the capabilities of `Canyon`, we will use `SelectQueryBuilder<T>`, which implements the `QueryBuilder<T>` trait
84
-
for build a more complex whery, filteing data and joining tables.
84
+
for build a more complex where, filteing data and joining tables.
@@ -101,12 +101,12 @@ let mut select_with_joins = LeagueTournament::select_query();
101
101
```
102
102
103
103
> Note: For now, when you use joins, you will need to create a new model with the columns in both tables (in case that you desire the data in such columns), but just follows the habitual process with the CanyonMapper.
104
-
It will try to retrieve the data for every field declared. If you don't declare a field that is in the open clause, in this case (*), that field wont be retrieved. No problem. But if you have fields that aren't mapp
104
+
It will try to retrieve the data for every field declared. If you don't declare a field that is in the open clause, in this case (*), that field won't be retrieved. No problem. But if you have fields that aren't map
105
105
able with some column in the database, the program will panic.
106
106
107
107
## More examples
108
108
109
-
If you want to see more examples, you can take a look into the `tests` folder, at the root of this repository. Every avaliable database operation is tested there, so you can use it to find the usage of the described operations in the documentation metioned above
109
+
If you want to see more examples, you can take a look into the `tests` folder, at the root of this repository. Every available database operation is tested there, so you can use it to find the usage of the described operations in the documentation mentioned above
110
110
111
111
## Contributing to CANYON-SQL
112
112
@@ -115,7 +115,7 @@ You can take a look to our [templated guide]((./CONTRIBUTING.md)).
115
115
116
116
But, to summarize:
117
117
118
-
- Take a look at the already opened issues, to see if already exists of it's someone already taking care about solving it. Even tho, you can enter to participate and explain your point of view, or even help to acomplish the task
118
+
- Take a look at the already opened issues, to see if already exists of it's someone already taking care about solving it. Even tho, you can enter to participate and explain your point of view, or even help to accomplish the task
119
119
- Make a fork of `Canyon-SQL`
120
120
- If you opened an issue, create a branch from the base branch of the repo (that's the default), and point it to your fork
121
121
- After complete your changes, open a `PR` to the default branch. Fill the template provided in the best way you're able to do it
0 commit comments