summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Koivisto <markus@vaadin.com>2015-01-08 16:15:35 +0200
committerVaadin Code Review <review@vaadin.com>2015-01-09 15:55:44 +0000
commit3a65f9869e2e9eccae4b28f0640920f7265cb035 (patch)
tree8796233599dce8621a6c2d7eff1a174d4668e04a
parent6c3d35cfb8985eaac86f30316333a84f6096b76b (diff)
downloadvaadin-framework-3a65f9869e2e9eccae4b28f0640920f7265cb035.tar.gz
vaadin-framework-3a65f9869e2e9eccae4b28f0640920f7265cb035.zip
Removed apostrophe typo in VToolTip.Java (#15533)
Changed "it's" to possesive "its". Change-Id: I4db55425a6f6778d0c1d0716ab833fa4fa8d31ac
-rw-r--r--client/src/com/vaadin/client/VTooltip.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/VTooltip.java b/client/src/com/vaadin/client/VTooltip.java
index 47a1b71228..453563370c 100644
--- a/client/src/com/vaadin/client/VTooltip.java
+++ b/client/src/com/vaadin/client/VTooltip.java
@@ -134,11 +134,11 @@ public class VTooltip extends VOverlay {
description.setInnerHTML(info.getTitle());
/*
* Issue #11871: to correctly update the offsetWidth of description
- * element we need to clear style width of it's parent DIV from old
+ * element we need to clear style width of its parent DIV from old
* value (in some strange cases this width=[tooltip MAX_WIDTH] after
* tooltip text has been already updated to new shortly value:
*
- * <div class="popupContent"> <div style="width: 500px;"> <div
+ * <div class="popupContent"> <div style="width:500px;"> <div
* class="v-errormessage" aria-hidden="true" style="display: none;">
* <div class="gwt-HTML"> </div> </div> <div
* class="v-tooltip-text">This is a short tooltip</div> </div>