Skip to content

Commit 51bded9

Browse files
authored
Merge pull request #488 from oxcabe/master
Fix typos in README.md
2 parents f5a24bf + da54f5b commit 51bded9

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Join the chat at https://gitter.im/euslisp/jskeus](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/euslisp/jskeus?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44

55

6-
This repository containts software devleoped and used by [JSK](http://www.jsk.t.u-tokyo.ac.jp) at The University of Tokyo.
6+
This repository contains software developed and used by [JSK](http://www.jsk.t.u-tokyo.ac.jp) at The University of Tokyo.
77

88
## 1. Getting started
99

@@ -61,7 +61,7 @@ $ irteusgl models/irt-all-objects.l "(make-all-objects)"
6161

6262
#### 3.1.1 Setup ROS repository
6363

64-
You can skip this procdeure if you already setup ROS system
64+
You can skip this procedure if you have already setup your ROS system
6565
```
6666
sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu `lsb_release -cs` main" > /etc/apt/sources.list.d/ros-latest.list'
6767
wget http://packages.ros.org/ros.key -O - | sudo apt-key add -
@@ -76,7 +76,7 @@ sudo apt-get install ros-indigo-pr2eus
7676

7777
### 3.3 Running demo programs
7878

79-
#### 3.3.1 Visualizinot pr2 robot
79+
#### 3.3.1 Visualization of pr2 robot
8080
```
8181
$ rosrun euscollada pr2.sh
8282
```
@@ -85,7 +85,7 @@ $ rosrun euscollada pr2.sh
8585

8686
#### 3.3.2 For real PR2 users
8787

88-
After you set `ROS_MASTER_URI` and `ROS_IP` to your PR2 robot (or simulated PR2), try following command
88+
After you set `ROS_MASTER_URI` and `ROS_IP` to your PR2 robot (or simulated PR2), try the following command:
8989

9090
```
9191
$ roscd pr2eus
@@ -106,16 +106,16 @@ $ rossetip
106106
![./pr2-read-state.launch](images/Pr2-read-state.png)
107107

108108

109-
see roseus package in http://github.com/jsk-ros-pkg repository for ROS client library for euslisp
109+
Have a look at roseus package in http://github.com/jsk-ros-pkg repository for ROS client library for euslisp
110110

111111
### 3.4 Support and Trouble Shooting
112112

113113

114-
Use [issue tracker](https://github.com/euslisp/jskeus/issues) for get support
114+
Open an issue on our [issue tracker](https://github.com/euslisp/jskeus/issues) if something doesn't work as expected, or if you want new features implemented.
115115

116-
Use [pull requests](https://github.com/euslisp/jskeus/pulls) to report bugs or patches.
116+
Use the [pull requests](https://github.com/euslisp/jskeus/pulls) system to send us solutions for the issues so we can implement them in this repository.
117117

118-
### 3.5 Online Documents (Currently only Japanese is avilable)
118+
### 3.5 Online Documents (Currently only Japanese is available)
119119

120120
See online [manual](http://euslisp.github.io/jskeus/)
121121

@@ -125,31 +125,31 @@ PDF files are also available from [here](https://github.com/euslisp/jskeus/raw/m
125125

126126
#### 3.6.1 Installing dependent libraries
127127

128-
for Ubuntu users
128+
For Ubuntu users:
129129
```
130130
$ sudo apt-get install git make gcc g++ libjpeg-dev libxext-dev libx11-dev libgl1-mesa-dev libglu1-mesa-dev libpq-dev libpng12-dev xfonts-100dpi xfonts-75dpi gsfonts-x11 texlive-fonts-extra xfonts-100dpi-transcoded xfonts-75dpi-transcoded msttcorefonts
131131
```
132132

133-
for Mac OSX users using Homebrew
133+
For Mac OSX users using Homebrew:
134134
```
135135
$ brew install jpeg libpng mesalib-glw wget
136136
```
137137

138138
'''NOTE:'''
139-
EusLisp needs X11 Library, but Mac OSX mountain lion no longer support it. So you need to install substitution [XQuartz](http://xquartz.macosforge.org/landing/).
139+
EusLisp needs X11 Library, but Mac OSX mountain lion no longer supports it. Given this case, you'll need to install [XQuartz](http://xquartz.macosforge.org/landing/).
140140

141-
Also for Mac OSX lion (or older) users it's better to install the latest XQuartz for the safety.
141+
Also for Mac OSX lion (or older) users it's better to install the latest XQuartz for safety and compatibility reasons.
142142

143143
(If XQuartz is older than 2.7.3, the installation of EusLisp will fail. You should install the latest XQuartz.)
144144

145145

146-
for Raspberry Pi users using debian(Raspbian "wheezy")
146+
For Raspberry Pi users using debian(Raspbian "wheezy"):
147147
```
148148
$ sudo apt-get install git gcc g++ libjpeg62-dev libxext-dev libx11-dev libgl1-mesa-dev libglu1-mesa-dev libpq-dev libpng12-dev xfonts-100dpi xfonts-75dpi
149149
## additional install for using OpenGL on raspberry pi
150150
$ sudo apt-get install libgl1-mesa-dri xserver-xorg-video-vesa xutils
151151
```
152-
for Cygwin(now working with 32bit only)
152+
For Cygwin(only works with 32bit systems)
153153
```
154154
Packages listed below should be intalled using setup.exe.
155155
@@ -173,7 +173,7 @@ $ echo "source ~/bashrc.eus" >> ~/.bashrc
173173

174174
#### 3.6.3 Install ROS and jsk-ros-pkg repository
175175

176-
See http://wiki.ros.org/indigo/Installation/Source for more detail
176+
See http://wiki.ros.org/indigo/Installation/Source for more details
177177

178178
```
179179
$ sudo apt-get install python-rosdep python-rosinstall-generator python-wstool python-rosinstall build-essential
@@ -189,4 +189,4 @@ $ source devel/setup.bash
189189

190190
### 3.7 Acknowledgment
191191

192-
The software in this repository is based on [EusLisp language](http://euslisp.sourceforge.net).
192+
Software in this repository is based on the [EusLisp language](http://euslisp.sourceforge.net).

0 commit comments

Comments
 (0)