Skip to content

Commit 4633dcc

Browse files
authored
Merge branch 'live' into patch-5
2 parents 4e5564e + aa1d0bc commit 4633dcc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

powerapps-docs/maker/canvas-apps/functions/function-encode-decode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ search.app:
1818
Encodes and decodes strings.
1919

2020
## Description
21-
The **EncodeUrl** function encodes a URL string, replacing non-alphanumeric characters with % and a hexadecimal number.
21+
The **EncodeUrl** function encodes a URL string, replacing certain non-alphanumeric characters with % and a hexadecimal number.
2222

23-
The **PlainText** function removes HTML and XML tags, converting tags such as these to an appropriate symbol:
23+
The **PlainText** function removes HTML and XML tags, converting certain tags such as these to an appropriate symbol:
2424

2525
* ** **
2626
* **"**
2727

28-
The return value from these functions is the encoded or decoded string.
28+
The return value from these functions is the encoded or decoded string. This function doesn't remove all HTML and XML tags.
2929

3030
## Syntax
3131
**EncodeUrl**( *String* )

powerapps-docs/maker/canvas-apps/working-with-variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Let's rebuild our adding machine by using a global variable:
100100

101101
3. To update the running total whenever a user selects the **Add** button, set its **[OnSelect](controls/properties-core.md)** property to this formula:
102102

103-
**Set( RunningTotal, RunningTotal + Text1 )**
103+
**Set( RunningTotal, RunningTotal + TextInput1 )**
104104

105105
The first time a user selects the **Add** button and **[Set](functions/function-set.md)** is called, **RunningTotal** is created with a default value of *blank*. In the addition, it will be treated as a zero.
106106

@@ -163,7 +163,7 @@ Let's rebuild our adding machine by using a context variable:
163163

164164
3. To update the running total whenever a user selects the **Add** button, set its **[OnSelect](controls/properties-core.md)** property to this formula:
165165

166-
**UpdateContext( { RunningTotal: RunningTotal + Text1 } )**
166+
**UpdateContext( { RunningTotal: RunningTotal + TextInput1 } )**
167167

168168
The first time a user selects the **Add** button and **[UpdateContext](functions/function-updatecontext.md)** is called, **RunningTotal** is created with a default value of *blank*. In the addition, it will be treated as a zero.
169169

0 commit comments

Comments
 (0)