소스 검색

Fixed broken single quotes.

mitm001 8 년 전
부모
커밋
39a72890fa
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/docs/asciidoc/jme3/beginner/hello_terrain.adoc

+ 2 - 2
src/docs/asciidoc/jme3/beginner/hello_terrain.adoc

@@ -25,7 +25,7 @@ If you get an error when trying to create your `ImageBasedHeightMap` object, you
 
 [TIP]
 ====
-To use the example assets in a new jMonkeyEngine SDK project, btn:[RMB] select your project, select `menu:Propertie[Libraries]` and in  the '`Compile'` tab press '`Add Library`' and add the '`jme3-test-data`' library.
+To use the example assets in a new jMonkeyEngine SDK project, btn:[RMB] select your project, select `menu:Propertie[Libraries]` and in  the `Compile` tab, press btn:[Add Library] and add the `jme3-test-data` library.
 ====
 
 
@@ -285,7 +285,7 @@ Use `setWrap(WrapMode.Repeat)` to make the small texture fill the wide area. If
 
 == What is a Terrain?
 
-Internally, the generated terrain mesh is broken down into tiles and blocks. This is an optimization to make culling easier. You do not need to worry about “tiles and blocks too much, just use recommended values for now – 64 is a good start.
+Internally, the generated terrain mesh is broken down into tiles and blocks. This is an optimization to make culling easier. You do not need to worry about '`tiles`' and '`blocks`' too much, just use recommended values for now – 64 is a good start.
 
 Let's assume you want to generate a 512x512 terrain. You already have created the heightmap object. Here are the steps that you perform everytime you create a new terrain.