File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
- * Copyright 2017, Google, Inc.
2
+ * Copyright 2017 Google LLC
3
3
* Licensed under the Apache License, Version 2.0 (the "License");
4
4
* you may not use this file except in compliance with the License.
5
5
* You may obtain a copy of the License at
@@ -120,7 +120,7 @@ async function analyzeEntitiesOfText(text) {
120
120
console . log ( entity . name ) ;
121
121
console . log ( ` - Type: ${ entity . type } , Salience: ${ entity . salience } ` ) ;
122
122
if ( entity . metadata && entity . metadata . wikipedia_url ) {
123
- console . log ( ` - Wikipedia URL: ${ entity . metadata . wikipedia_url } $ ` ) ;
123
+ console . log ( ` - Wikipedia URL: ${ entity . metadata . wikipedia_url } ` ) ;
124
124
}
125
125
} ) ;
126
126
// [END language_entities_text]
@@ -155,7 +155,7 @@ async function analyzeEntitiesInFile(bucketName, fileName) {
155
155
console . log ( entity . name ) ;
156
156
console . log ( ` - Type: ${ entity . type } , Salience: ${ entity . salience } ` ) ;
157
157
if ( entity . metadata && entity . metadata . wikipedia_url ) {
158
- console . log ( ` - Wikipedia URL: ${ entity . metadata . wikipedia_url } $ ` ) ;
158
+ console . log ( ` - Wikipedia URL: ${ entity . metadata . wikipedia_url } ` ) ;
159
159
}
160
160
} ) ;
161
161
You can’t perform that action at this time.
0 commit comments