diff --git a/docs/next/stylesheet.html b/docs/next/stylesheet.html index f3b1e6cdac0..a6786e61487 100644 --- a/docs/next/stylesheet.html +++ b/docs/next/stylesheet.html @@ -117,7 +117,7 @@

NOTE: Exercise caution as abusing this can tax you in terms of optimizations. IDs enable optimizations through the bridge and memory in general. Refering to style objects directly will deprive you of these optimizations.

Example:

-
const styles = StyleSheet.create({
+
var styles = StyleSheet.create({
   listItem: {
     flex: 1,
     fontSize: 16,
@@ -132,7 +132,7 @@ StyleSheet.f
 // returns { flex: 1, fontSize: 16, color: 'green' }
 

Alternative use:

-
const styles = StyleSheet.create({
+
var styles = StyleSheet.create({
   listItem: {
     flex: 1,
     fontSize: 16,
@@ -156,7 +156,7 @@ StyleSheet.f
 

Properties

hairlineWidth

This is defined as the width of a thin line on the platform. It can be used as the thickness of a border or division between two elements. Example:

-
const styles = StyleSheet.create({
+
var styles = StyleSheet.create({
   separator: {
     borderBottomColor: '#bbb',
     borderBottomWidth: StyleSheet.hairlineWidth,
diff --git a/docs/next/stylesheet/index.html b/docs/next/stylesheet/index.html
index f3b1e6cdac0..a6786e61487 100644
--- a/docs/next/stylesheet/index.html
+++ b/docs/next/stylesheet/index.html
@@ -117,7 +117,7 @@
 

NOTE: Exercise caution as abusing this can tax you in terms of optimizations. IDs enable optimizations through the bridge and memory in general. Refering to style objects directly will deprive you of these optimizations.

Example:

-
const styles = StyleSheet.create({
+
var styles = StyleSheet.create({
   listItem: {
     flex: 1,
     fontSize: 16,
@@ -132,7 +132,7 @@ StyleSheet.f
 // returns { flex: 1, fontSize: 16, color: 'green' }
 

Alternative use:

-
const styles = StyleSheet.create({
+
var styles = StyleSheet.create({
   listItem: {
     flex: 1,
     fontSize: 16,
@@ -156,7 +156,7 @@ StyleSheet.f
 

Properties

hairlineWidth

This is defined as the width of a thin line on the platform. It can be used as the thickness of a border or division between two elements. Example:

-
const styles = StyleSheet.create({
+
var styles = StyleSheet.create({
   separator: {
     borderBottomColor: '#bbb',
     borderBottomWidth: StyleSheet.hairlineWidth,
diff --git a/en/help.html b/en/help.html
index ca8f9d2ba4e..6d67d93d4d6 100644
--- a/en/help.html
+++ b/en/help.html
@@ -12,7 +12,7 @@
             {"zIndex":100}
           )
         });
-