Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#992 fix typos #1023

Merged
merged 1 commit into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/providers_tables_viewports/lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ which allows components to be started and stopped in a sensible order.

## How does the lifecycle work?

The user interaction with the lifecycle component is very minimal by design. THe obligation is when there is a component
The user interaction with the lifecycle component is very minimal by design. The obligation is when there is a component
that depends on something else, it registers that dependency in the construction logic.

As an example if we take the VuiStateStoreProvider
Expand Down
2 changes: 1 addition & 1 deletion docs/providers_tables_viewports/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class VuiStateStoreProvider(val table: DataTable, val store: VuiStateStore)(impl
}
```

In the module we also define a rest service. This is how the UI interacts with the state store. THe rest service is exposed via the underlying Vert.x
In the module we also define a rest service. This is how the UI interacts with the state store. The rest service is exposed via the underlying Vert.x
infrastructure.

```scala
Expand Down
3 changes: 3 additions & 0 deletions docs/roadmap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ title: Vuu Roadmap
---

This is the Vuu Roadmap:
1. Big Data Support
2. Data Visualization
3. User Experience
2 changes: 1 addition & 1 deletion docs/rpc/service.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { SvgDottySeparator } from "@site/src/components/SvgDottySeparator";
<SvgDottySeparator style={{marginBottom: 32}}/>

The best way to describe service rpc calls is with an example. In the default React grid for Vuu, we have the filter
component. The filter uses an ALNTR grammar for defining how we want to filter the data. Examples of how we use this are:
component. The filter uses an ANTLR grammar for defining how we want to filter the data. Examples of how we use this are:

```
ric = AAA.L
Expand Down
6 changes: 4 additions & 2 deletions docs/team.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ This is the Vuu team (this is not an exhaustive list of contributors):
- Michael Banham, UBS, Contributor
- Marina Bambang, UBS, Product Owner
- Justyna Klos, So In Your Face LTD, Designer
- Colin Eberhardt, Scottlogic, Contributor
- Colin Eberhardt, Scott Logic, Contributor
- Dimitar Dimitrov, UBS, Contributor
- Gareth Ncube, UBS, Contributor
- Pranav Bheemsetty, UBS, Contributor
- Harry Hartley, Scottlogic, Contributor
- Harry Hartley, Scott Logic, Contributor
- Na-Lee Ha, UBS, Contributor
- Tomasz Rumak, UBS, Contributor
2 changes: 1 addition & 1 deletion docs/trees/trees_session_tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import { SvgDottySeparator } from "@site/src/components/SvgDottySeparator";
In this section you can read about:

- [Trees](trees.md) - the datastructures used, how the system looks
- [Aggregates](aggregates.md) - these are mathematical operations we want to do across the leaves of a tree, which are displayed at teh branch level
- [Aggregates](aggregates.md) - these are mathematical operations we want to do across the leaves of a tree, which are displayed at the branch level
- [Tree Builder](tree_builder.md) - the server side component that builds the trees
2 changes: 1 addition & 1 deletion docs/ui/calculated_columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ It would likely be poor UX to ask the user to define the return type.

### Use in Tree'd Viewports

By default calculated columns would work the same in tree'd viewports as in non-tree'd viewports. THe only caveat to that
By default calculated columns would work the same in tree'd viewports as in non-tree'd viewports. The only caveat to that
would be when the calculated column would be a branch in the tree. In that case the column values would have to be calculated in the
tree building function, which may slow down tree generation for specific viewports.

Expand Down
2 changes: 1 addition & 1 deletion docs/ui/visual_linking.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Example:

```
If you look at this code from our SimulationModule, you can see we've declared a potential link from this table ChildOrders to parentOrders.
THe structure of the declaration is: Link(fieldInChildTable, parentTable, fieldInParentTable)
The structure of the declaration is: Link(fieldInChildTable, parentTable, fieldInParentTable)

Anytime you declare these links, our UI will allow you to select the Visual Linking usimng a right click on the grid.

Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ function updateGroupColumnWidth(
* 2) adjust the flex of resized column, distribute diff to the other flex columns
* if we are resizing a non-flex column
* 1) adjust the width of all other fill columns according to their flex values
* if we try to adjust teh width of a flex column and it is the only flex column
* if we try to adjust the width of a flex column and it is the only flex column
* disallow the resize
*/
function updateGroupFillColumnWidth(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import java.util.concurrent.ConcurrentHashMap
case class JoinDefToJoinTable(joinDef: JoinTableDef, table: DataTable)

/**
* THe purpose of this object is to allow us to go from a right key, say prices, ric = VOD.L and look
* The purpose of this object is to allow us to go from a right key, say prices, ric = VOD.L and look
* For the corresponding left keys, say orders, orderId = 1,2,3
*/
class RightToLeftKeys {
Expand Down
Loading