function.php syntax errror in child theme

I am receiving an error when trying to leave or update the editor from the function.php file in my child theme this is the error.
Parse error: syntax error, unexpected ‘.’, expecting end of file in /home2/bestldsp/public_html/grapegrovewoodworks/wp-content/themes/child-theme/functions.php on line 15

Here is the code in the file.

<?php

// Queue parent style followed by child/customized style
add_action( ‘wp_enqueue_scripts’, ‘func_enqueue_child_styles’, 99);

function func_enqueue_child_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_dequeue_style(‘activello-style’);
wp_enqueue_style( ‘activello-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
}

Issue resolved itself somehow.

Awesome great to see that the issue is resolved for you now.

Please advise if you have more questions.

Have a fantastic day!