Skip to content

Commit a97ccbc

Browse files
authored
Fix a few typos (#64)
1 parent 4d9b985 commit a97ccbc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This package provides access to Mathematica/Wolfram Engine via the MathLink libr
66

77
## Installation
88

9-
The package requires an installation of either [Mathematica](http://www.wolfram.com/mathematica/) or the free [Wolfram Engine](https://www.wolfram.com/engine/). It will attempt to find the installation at build time; if this fails, please see the [installation troublesshoot](#installation-troubleshoot) below.
9+
The package requires an installation of either [Mathematica](http://www.wolfram.com/mathematica/) or the free [Wolfram Engine](https://www.wolfram.com/engine/). It will attempt to find the installation at build time; if this fails, please see the [installation troubleshoot](#installation-troubleshoot) below.
1010

1111

1212
## Usage
@@ -162,7 +162,7 @@ julia> W2Mstr(W`b/(c^(a+c))`)
162162

163163

164164
## LateX printing in JuPyter Notebooks
165-
Printing in Juypter notebooks is, by default, done in latex.
165+
Printing in Jupyter notebooks is, by default, done in latex.
166166
This can be turned off with the command `MathLink.set_texOutput(false)`
167167

168168
## Installation Troubleshoot

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import MathLink: WExpr, WSymbol
66

77

88
@testset "W2Mstr" begin
9-
###Test of a naive MathLink to Mathematica converter function (to resuts can be copied into mathematica directly"
9+
###Test of a naive MathLink to Mathematica converter function (the results can be copied into mathematica directly)
1010

1111
@testset "Basic Algebra" begin
1212
@test W2Mstr(W"a") == "a"
@@ -196,7 +196,7 @@ end
196196
@test im*(im*W"c") == weval(W`-c`)
197197

198198

199-
#####Testing that complex nubmers can be put in weval
199+
#####Testing that complex numbers can be put in weval
200200
@test weval(im+2) == weval(W`I+2`)
201201
@test weval(im*2) == weval(W`I*2`)
202202
@test weval(im) == weval(W`I`)
@@ -253,7 +253,7 @@ end
253253

254254

255255

256-
@testset "Find Graphiscs" begin
256+
@testset "Find Graphics" begin
257257
@test !HasGraphicsHead(W"a")
258258
@test HasGraphicsHead(W`Plot[x,{x,0,1}]`)
259259
@test HasGraphicsHead(W`ListPlot[x,{x,0,1}]`)

0 commit comments

Comments
 (0)