Skip to content

Commit 32a660f

Browse files
authored
Fix typos in docs (#410)
* Fix typos in docs * Delete unintentional copy of defaults.fsx
1 parent 9845b4d commit 32a660f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+153
-151
lines changed

docs/3D-charts/3d-isosurface-plots.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Plotly.NET.Defaults.DefaultDisplayOptions <-
3232
3333
*Summary:* This example shows how to create 3D-IsoSurface charts in F#.
3434
35-
let's first create some data for the purpose of creating example charts:
35+
Let's first create some data for the purpose of creating example charts:
3636
*)
3737

3838
open System

docs/3D-charts/3d-mesh-plots.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Plotly.NET.Defaults.DefaultDisplayOptions <-
3232
3333
*Summary:* This example shows how to create 3D-Mesh charts in F#.
3434
35-
let's first create some data for the purpose of creating example charts:
35+
Let's first create some data for the purpose of creating example charts:
3636
*)
3737

3838
open System

docs/3D-charts/3d-scatter-plots.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Plotly.NET.Defaults.DefaultDisplayOptions <-
3434
3535
*Summary:* This example shows how to create three-dimensional point and line charts in F#.
3636
37-
Point3D, Line3D, and Bubble3D charts are all derived from `Chart.Scatter3D` and can be generated by that function as well.
37+
Point3D, Line3D, and Bubble3D charts are all derived from `Chart.Scatter3D` and can be generated by that function, as well.
3838
However, `Chart.Point3D`, `Chart.Line3D`, or `Chart.Bubble3D` provide sensible defaults and arguments for the respective derived chart, and are recommended to use.
3939
4040
## 3D point chart

docs/3D-charts/3d-streamtube-plots.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Plotly.NET.Defaults.DefaultDisplayOptions <-
3333
3434
*Summary:* This example shows how to create 3D-StreamTube charts in F#.
3535
36-
let's first create some data for the purpose of creating example charts:
36+
Let's first create some data for the purpose of creating example charts:
3737
*)
3838

3939
open Deedle

docs/3D-charts/3d-surface-plots.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Plotly.NET.Defaults.DefaultDisplayOptions <-
3232
3333
*Summary:* This example shows how to create 3D surface plots in F#.
3434
35-
let's first create some data for the purpose of creating example charts:
35+
Let's first create some data for the purpose of creating example charts:
3636
*)
3737
open System
3838
open Plotly.NET

docs/3D-charts/3d-volume-plots.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Plotly.NET.Defaults.DefaultDisplayOptions <-
3232
3333
*Summary:* This example shows how to create 3D-Volume charts in F#.
3434
35-
let's first create some data for the purpose of creating example charts:
35+
Let's first create some data for the purpose of creating example charts:
3636
*)
3737

3838
open System

docs/carpet-charts/carpet_line_scatter_plots.fsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Plotly.NET.Defaults.DefaultDisplayOptions <-
3333
3434
*Summary:* This example shows how to create carpet charts in F#.
3535
36-
let's first create some data for the purpose of creating example charts:
36+
Let's first create some data for the purpose of creating example charts:
3737
3838
*)
3939

@@ -56,7 +56,7 @@ Besides the ability to incorporate more variables, another feature that distingu
5656
5757
A conventional carpet plot can capture the interaction of up to three independent variables and three dependent variables and still be easily read and interpolated.
5858
59-
Carpet plots have common applications within areas such as material science for showing elastic modulus in laminates,and within aeronautics.
59+
Carpet plots have common applications within areas such as material science for showing elastic modulus in laminates, and within aeronautics.
6060
6161
A carpet plot with two independent variables and one dependent variable is often called a cheater plot for the use of a phantom "cheater" axis instead of the horizontal axis.
6262
@@ -66,7 +66,7 @@ A carpet plot with two independent variables and one dependent variable is often
6666
6767
In plotly, carpet plots are different to all other trace types in the regard that the coordinate system of the carpet is not set on the layout, but is itself a trace.
6868
69-
Use `Chart.Carpet` to define these `coordinate traces`. All carpets have a mandatory identifier, which will be used by other traces to define which carpet coordinate system to use.
69+
Use `Chart.Carpet` to define these `coordinate traces`. All carpets have a mandatory identifier which will be used by other traces to define which carpet coordinate system to use.
7070
*)
7171

7272
let carpet = Chart.Carpet(carpetId = "carpetIdentifier", A = a, B = b, Y = y)
@@ -83,7 +83,7 @@ carpet |> GenericChart.toChartHTML
8383
(**
8484
## Carpet point charts
8585
86-
use `Chart.PointCarpet` to create a point plot on the referenced carpet coordinate system:
86+
Use `Chart.PointCarpet` to create a point plot on the referenced carpet coordinate system:
8787
*)
8888
let carpetPoint =
8989
[ carpet
@@ -102,7 +102,7 @@ carpetPoint |> GenericChart.toChartHTML
102102
(**
103103
## Carpet line charts
104104
105-
use `Chart.LineCarpet` to create a line plot on the referenced carpet coordinate system:
105+
Use `Chart.LineCarpet` to create a line plot on the referenced carpet coordinate system:
106106
*)
107107

108108
let carpetLine =
@@ -122,7 +122,7 @@ carpetLine |> GenericChart.toChartHTML
122122
(**
123123
## Carpet Spline charts
124124
125-
use `Chart.LineCarpet` to create a spline plot on the referenced carpet coordinate system:
125+
Use `Chart.LineCarpet` to create a spline plot on the referenced carpet coordinate system:
126126
*)
127127

128128
let carpetSpline =
@@ -142,7 +142,7 @@ carpetSpline |> GenericChart.toChartHTML
142142
(**
143143
## Carpet bubble charts
144144
145-
use `Chart.LineCarpet` to create a bubble plot on the referenced carpet coordinate system:
145+
Use `Chart.LineCarpet` to create a bubble plot on the referenced carpet coordinate system:
146146
*)
147147

148148
let carpetBubble =

docs/categorical-charts/icicle.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Plotly.NET.Defaults.DefaultDisplayOptions <-
3737
Icicle charts visualize hierarchical data using rectangular sectors that cascade from root to leaves in one of four directions: up, down, left, or right.
3838
Similar to Sunburst charts and Treemaps charts, the hierarchy is defined by labels and parents attributes.
3939
Click on one sector to zoom in/out, which also displays a pathbar on the top of your icicle.
40-
To zoom out, you can click the parent sector or click the pathbar as well.
40+
To zoom out, you can click the parent sector or click the pathbar, as well.
4141
*)
4242

4343
open Plotly.NET
@@ -71,7 +71,7 @@ icicle |> GenericChart.toChartHTML
7171
(**
7272
## More styled example
7373
74-
This example shows the usage of some of the styling possibility using `Chart.Icicle`.
74+
This example shows the usage of some of the styling options using `Chart.Icicle`.
7575
For even more styling control, use the respective TraceStyle function `TraceDomainStyle.Icicle`
7676
*)
7777

docs/categorical-charts/parallel-categories.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ parcats |> GenericChart.toChartHTML
6262
(**
6363
## More styled example
6464
65-
This example shows the usage of some of the styling possibility using `Chart.ParallelCategories`.
65+
This example shows the usage of some of the styling options using `Chart.ParallelCategories`.
6666
For even more styling control, use the respective TraceStyle function `TraceDomainStyle.ParallelCategories`
6767
*)
6868

docs/categorical-charts/parallel-coords.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Plotly.NET.Defaults.DefaultDisplayOptions <-
3434
3535
*Summary:* This example shows how to create parallel coordinates plot in F#.
3636
37-
let's first create some data for the purpose of creating example charts:
37+
Let's first create some data for the purpose of creating example charts:
3838
3939
*)
4040

@@ -69,7 +69,7 @@ parcoords1 |> GenericChart.toChartHTML
6969
(**
7070
## More styled example
7171
72-
This example shows the usage of some of the styling possibility using `Chart.ParallelCoord`.
72+
This example shows the usage of some of the styling options using `Chart.ParallelCoord`.
7373
For even more styling control, use the respective TraceStyle function `TraceDomainStyle.ParallelCoord`
7474
*)
7575

0 commit comments

Comments
 (0)