summaryrefslogtreecommitdiff
path: root/tutorials
diff options
context:
space:
mode:
authorIvan Enderlin <ivan.enderlin@hoa-project.net>2013-12-18 11:53:30 +0100
committerIvan Enderlin <ivan.enderlin@hoa-project.net>2013-12-18 11:53:30 +0100
commite5263aa3f0c9138cfeb1241f296e1404b705b904 (patch)
treeace5368a51ac9c4d21ac851035924724488ff4de /tutorials
parent7e0d1938f9e875a96284c217f28a2e7a1995539d (diff)
downloadphp-git-e5263aa3f0c9138cfeb1241f296e1404b705b904.tar.gz
In english, no horizontal space before “!”.
Diffstat (limited to 'tutorials')
-rw-r--r--tutorials/intro.md2
-rw-r--r--tutorials/java/src/phpdbg/ui/JConsole.form2
-rw-r--r--tutorials/java/src/phpdbg/ui/JConsole.java8
-rw-r--r--tutorials/simples.md2
4 files changed, 7 insertions, 7 deletions
diff --git a/tutorials/intro.md b/tutorials/intro.md
index 0442413499..34ec1b20ba 100644
--- a/tutorials/intro.md
+++ b/tutorials/intro.md
@@ -80,7 +80,7 @@ class phpdbg {
$dbg = new phpdbg();
-var_dump($dbg->isGreat("PHP Rocks !!"));
+var_dump($dbg->isGreat("PHP Rocks!!"));
?>
```
diff --git a/tutorials/java/src/phpdbg/ui/JConsole.form b/tutorials/java/src/phpdbg/ui/JConsole.form
index 2db69b086d..d2808942db 100644
--- a/tutorials/java/src/phpdbg/ui/JConsole.form
+++ b/tutorials/java/src/phpdbg/ui/JConsole.form
@@ -180,7 +180,7 @@
</Component>
<Component class="javax.swing.JTextField" name="input">
<Properties>
- <Property name="toolTipText" type="java.lang.String" value="Enter phpdbg commands here !"/>
+ <Property name="toolTipText" type="java.lang.String" value="Enter phpdbg commands here!"/>
<Property name="enabled" type="boolean" value="false"/>
</Properties>
<Events>
diff --git a/tutorials/java/src/phpdbg/ui/JConsole.java b/tutorials/java/src/phpdbg/ui/JConsole.java
index 383e225a85..6c8cfb364b 100644
--- a/tutorials/java/src/phpdbg/ui/JConsole.java
+++ b/tutorials/java/src/phpdbg/ui/JConsole.java
@@ -121,7 +121,7 @@ public class JConsole extends javax.swing.JDialog {
hostnameLabel.setText("Hostname:");
- input.setToolTipText("Enter phpdbg commands here !");
+ input.setToolTipText("Enter phpdbg commands here!");
input.setEnabled(false);
input.addKeyListener(new java.awt.event.KeyAdapter() {
public void keyReleased(java.awt.event.KeyEvent evt) {
@@ -344,7 +344,7 @@ public class JConsole extends javax.swing.JDialog {
if (address != null && address.length() > 0) {
return address;
} else {
- messageBox("Invalid hostname provided !", MessageType.WARN);
+ messageBox("Invalid hostname provided!", MessageType.WARN);
}
return null;
@@ -354,7 +354,7 @@ public class JConsole extends javax.swing.JDialog {
try {
return Integer.parseInt(stdinPort.getText());
} catch (NumberFormatException ex) {
- messageBox("Invalid stdin port provided !", MessageType.WARN);
+ messageBox("Invalid stdin port provided!", MessageType.WARN);
}
return 0;
}
@@ -363,7 +363,7 @@ public class JConsole extends javax.swing.JDialog {
try {
return Integer.parseInt(stdoutPort.getText());
} catch (NumberFormatException ex) {
- messageBox("Invalid stdout port provided !", MessageType.WARN);
+ messageBox("Invalid stdout port provided!", MessageType.WARN);
}
return 0;
}
diff --git a/tutorials/simples.md b/tutorials/simples.md
index d8b53d6979..18d0a01bb7 100644
--- a/tutorials/simples.md
+++ b/tutorials/simples.md
@@ -42,7 +42,7 @@ phpdbg> print class myClassName
Introspection doesn't only provide you with names, but the addresses of every opcode in every statement, which you may use to specify with as much precision as
is possible where to break execution.
-**There is a print command for particular methods, useful if a class is very large and your screen is not !**
+**There is a print command for particular methods, useful if a class is very large and your screen is not!**
At this point, break points are set; the next thing to do is issue the run command: